home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F33110_testSum.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  461 b   |  19 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2.    <xsl:import href="sum.xsl"/>
  3.  
  4.    <!-- This transformation must be applied to:
  5.         numList.xml 
  6.      -->
  7.     <xsl:output  encoding="UTF-8" omit-xml-declaration="yes"/>
  8.  
  9.     <xsl:template match="/">
  10.  
  11.       <xsl:call-template name="sum">
  12.         <xsl:with-param name="pList" select="/*/*"/>
  13.       </xsl:call-template>
  14.     </xsl:template>
  15.  
  16.  
  17. </xsl:stylesheet>
  18.  
  19.